home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK2.toast / Development Kits (Disc 2) / ScriptX / Code Samples / untested / tcpip / browser / applet.sx next >
Encoding:
Text File  |  1996-05-21  |  292 b   |  22 lines  |  [TEXT/ttxt]

  1. --<<< 
  2.  
  3. in module WebBrowser
  4.  
  5. class WebApplet ()
  6. instance variables
  7.   tc
  8. end
  9.  
  10. method init self {object WebApplet} #rest args #key tc: browser: -> (
  11.     apply nextmethod self args
  12.     self.tc := tc
  13.     addApplet browser self
  14. )
  15.  
  16. method terminate self {object WebApplet} -> (
  17.     -- close self.tc
  18. )
  19.  
  20. -->>
  21.     
  22.